home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
parallel
/
serverli
< prev
next >
Wrap
Text File
|
1992-04-11
|
352b
|
9 lines
%---------------------------------------------------------------------
%----Remote reading requires doing a local read and putting the result
%----into the tuple space.
remote_read(Reply_predicate):-
read(Read),
Tuple =.. [Reply_predicate,Read],
server_out__(_,Tuple).
%---------------------------------------------------------------------